home *** CD-ROM | disk | FTP | other *** search
/ Cream of the Crop 21 / Cream of the Crop 21 (Terry Blount) (October 1996).iso / editor / auror300.zip / XWORD.AML < prev   
Text File  |  1996-07-17  |  2KB  |  40 lines

  1. //--------------------------------------------------------------------
  2. // XWORD.AML
  3. // Syntax highlighting for highlighting words
  4. // (used by the hiliteword command in Ext.aml)
  5. //
  6. // After making changes, save this file and compile with <shift f10>.
  7. //--------------------------------------------------------------------
  8.  
  9. include bootpath "define.aml"
  10.  
  11. syntax
  12.   'bcfi'                          // options:
  13.                                   //   b=show through marked block
  14.                                   //   c=highlight cursor line
  15.                                   //   d=show through closed folds
  16.                                   //   f=use only foreground colors
  17.                                   //   i=ignore keyword case
  18.                                   //   n=highlight numbers
  19.   '.,;:\'"?!()<>|\t'              // symbol set 1
  20.   ''                              // symbol set 2
  21.   ''                              // string characters
  22.   ''                              // string literal char
  23.   ''                              // numeric symbol
  24.   ''            0                 // eol comment 1 / start column
  25.   ''            0                 // eol comment 2 / start column
  26.   ''            ''                // multi-line comment 1
  27.   ''            ''                // multi-line comment 2
  28.   0                               // number of lines to scan backward
  29.  
  30.   // colors
  31.   color brightcyan   on black        // keyword
  32.   color white        on white        // symbol set 1
  33.   color white        on white        // symbol set 2
  34.   color brightred    on brightred    // string
  35.   color brightred    on brightred    // numeric
  36.   color brightgreen  on brightgreen  // eol comment 1
  37.   color yellow       on yellow       // eol comment 2
  38.   color brightgreen  on brightgreen  // comment 1
  39.   color brightcyan   on brightcyan   // comment 2
  40.